+2003-09-15 Raymond Penners <raymond@dotsphinx.com>\r
+\r
+ * src/wimp_style.c: Fixed typ-o (gtk-double-cliNk-time), adjusted\r
+ cursor blink time to cope with Windows semantics (GTK+ uses cycle\r
+ time), fixed clipping area computation.\r
+ \r
2003-09-15 Dom Lachowicz <cinamod@hotmail.com>\r
\r
- * src/wimp_style.c: Fix a few more console messages, implement caret blinking\r
- * src/xp_theme.*: Stub out line drawing. Apparently, documented bits arae missing\r
- from MS's implementation. Go figure...\r
+ * src/wimp_style.c: Fix a few more console messages, implement\r
+ caret blinking\r
+ \r
+ * src/xp_theme.*: Stub out line drawing. Apparently, documented\r
+ bits are missing from MS's implementation. Go figure...\r
\r
2003-09-14 Raymond Penners <raymond@dotsphinx.com>\r
\r
"default_border".\r
\r
* src/wimp_style.c: Due to a bug lots of console message\r
- complaining about "unexpected keyword `fg'" and occured, fixed.\r
+ complaining about "unexpected keyword `fg'" occured, fixed.\r
\r
2003-09-11 Dom Lachowicz <cinamod@hotmail.com>\r
\r
if (cursor_blink_time > 0)
{
g_object_set (G_OBJECT (settings), "gtk-cursor-blink-time",
- cursor_blink_time, NULL);
+ 2*cursor_blink_time, NULL);
}
- g_object_set (G_OBJECT (settings), "gtk-double-clink-time",
+ g_object_set (G_OBJECT (settings), "gtk-double-click-time",
GetDoubleClickTime(), NULL);
g_object_set (G_OBJECT (settings), "gtk-dnd-drag-threshold",
GetSystemMetrics (SM_CXDRAG), NULL);
{
clip.left = area->x - xoff;
clip.top = area->y - yoff;
- clip.right = rect.left + area->width;
- clip.bottom = rect.top + area->height;
+ clip.right = clip.left + area->width;
+ clip.bottom = clip.top + area->height;
pClip = &clip;
}